func internal/strconv.formatBits

4 uses

	internal/strconv (current package)
		itoa.go#L21: 	_, s := formatBits(nil, i, base, false, false)
		itoa.go#L45: 	_, s := formatBits(nil, uint64(i), base, i < 0, false)
		itoa.go#L76: 	dst, _ = formatBits(dst, i, base, false, true)
		itoa.go#L88: func formatBits(dst []byte, u uint64, base int, neg, append_ bool) (d []byte, s string) {